home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue63 / Docking / DockedControlsU.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-09-13  |  578 b   |  33 lines

  1. unit DockedControlsU;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ComCtrls, ToolWin, StdCtrls, ImgList;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     ToolBar1: TToolBar;
  12.     ToolButton1: TToolButton;
  13.     ToolButton2: TToolButton;
  14.     ToolButton3: TToolButton;
  15.     ToolButton4: TToolButton;
  16.     ToolButton5: TToolButton;
  17.     ImageList1: TImageList;
  18.     Label1: TLabel;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   Form1: TForm1;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.